home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir39 / dos6supp.zip / SD6COPY.BAT < prev    next >
DOS Batch File  |  1993-04-05  |  630b  |  35 lines

  1. @echo off
  2. if not "%1"=="" goto checkit
  3. echo You must run SETUP.BAT to install the Supplemental Utilities
  4. goto done
  5.  
  6. :checkit
  7. if "%1"=="CHANGEDISK" goto chngdsk
  8.  
  9. if not exist %2\%1 goto doit
  10. echo There is already a file named %1 in %2.
  11. %2\choice /c:yn "Overwrite it?  Yes, No "
  12. if errorlevel 2 goto done
  13.  
  14. :doit
  15. echo   Copying %1 to %2\%1
  16. %2\expand %1 %2\%1  > NUL
  17. if "%3"=="D" setver %1 /D /QUIET > NUL
  18. goto done
  19.  
  20.  
  21.  
  22. :chngdsk
  23. if "%SD6%"=="%2" goto done
  24. if exist DISKID0%2.BAT goto newdisk
  25. echo.
  26. echo Please insert Supplemental Disk %2 in the drive.
  27. pause
  28. goto chngdsk
  29.  
  30. :newdisk
  31. set SD6=%2
  32.  
  33. :done
  34.  
  35.